home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
dslibrary.lha
/
ds.library
/
autodocs
/
libraries
/
ds.h
next >
Wrap
C/C++ Source or Header
|
1997-02-13
|
2KB
|
54 lines
@DATABASE "libraries/ds.h"
@MASTER "Workbench31:MCPP4.0_PRO/Aminet/ds.library/autodocs//include/libraries/ds.h"
@REMARK This file was created by ADtoHT 2.1 on 13-Feb-97 20:07:58
@REMARK Do not edit
@REMARK ADtoHT is © 1993-1995 Christian Stieber
@NODE MAIN "libraries/ds.h"
@{"libraries/ds.h" LINK File}
@{b}Typedefs@{ub}
@{"BTREE" LINK "libraries/ds.h/File" 24}
@{b}#defines@{ub}
@{"DS_ERROR_CANNOT_OPEN_FILE_READWRITE" LINK "libraries/ds.h/File" 15} @{"DS_ERROR_CANNOT_OPEN_FILE_WRITE" LINK "libraries/ds.h/File" 14}
@{"DS_ERROR_DUPLICATE_KEY" LINK "libraries/ds.h/File" 21} @{"DS_ERROR_KEY_NOT_FOUND" LINK "libraries/ds.h/File" 20}
@{"DS_ERROR_NO_FREE_STORE" LINK "libraries/ds.h/File" 19} @{"DS_ERROR_WRONG_DATASIZE" LINK "libraries/ds.h/File" 18}
@{"DS_ERROR_WRONG_FILETYPE" LINK "libraries/ds.h/File" 16} @{"DS_ERROR_WRONG_KEYSIZE" LINK "libraries/ds.h/File" 17}
@ENDNODE
@NODE File "libraries/ds.h"
/*
** $VER: ds.h 37.0 (30.01.97)
**
** main include file for @{"ds.library" LINK "ds/MAIN"}
**
** (C) Copyright 1997 Markus Hillenbrand
** All Rights Reserved.
*/
#ifndef LIBRARIES_DS_H
#define LIBRARIES_DS_H
/* Possible error codes (currently for internal use only) */
#define DS_ERROR_CANNOT_OPEN_FILE_WRITE 5001 /* BTree */
#define DS_ERROR_CANNOT_OPEN_FILE_READWRITE 5002 /* BTree */
#define DS_ERROR_WRONG_FILETYPE 5003 /* BTree */
#define DS_ERROR_WRONG_KEYSIZE 5004 /* BTree */
#define DS_ERROR_WRONG_DATASIZE 5005 /* BTree */
#define DS_ERROR_NO_FREE_STORE 5006 /* BTree */
#define DS_ERROR_KEY_NOT_FOUND 5007 /* BTree */
#define DS_ERROR_DUPLICATE_KEY 5008 /* BTree */
/* Structures Defines for B-Trees */
typedef void * BTREE;
#endif /* LIBRARIES_DS_H */
@ENDNODE